| Conditions | 1 |
| Paths | 1 |
| Total Lines | 9 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | import path from 'path' |
||
| 19 | export function removeFolder(folderPath) { |
||
| 20 | execPromise.exec('rm -rf ' + path.join(config.root, folderPath)).then(function (result) { |
||
| 21 | var stdout = result.stdout |
||
| 22 | var stderr = result.stderr |
||
| 23 | if(stdout) console.log('stdout: ', stdout) |
||
| 24 | if(stderr) console.log('stderr: ', stderr) |
||
| 25 | }) |
||
| 26 | return folderPath |
||
| 27 | } |
||
| 28 | |||
| 35 |